home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 51329 / 51329.xpi / chrome / firefound.jar / content / settings.xul < prev    next >
Extensible Markup Language  |  2009-12-14  |  3KB  |  59 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
  3. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  4. <?xml-stylesheet href="chrome://mozapps/content/preferences/preferences.css" type="text/css"?>
  5. <?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css" type="text/css"?>
  6. <?xml-stylesheet href="chrome://firefound/skin/settings.css" type="text/css"?>
  7. <!DOCTYPE dialog SYSTEM "chrome://firefound/locale/strings.dtd">
  8. <dialog
  9.     onload="FIREFOUND.load(true); setTimeout(function () { FIREFOUND.getPreferencesForFirefox(); }, 1000);"
  10.     ondialogaccept="return FIREFOUND.setPreferences();"
  11.     title="&settings.title;"
  12.     buttons="accept,cancel"
  13.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  14.     <script type="application/x-javascript" src="chrome://firefound/content/firefound.js"></script>
  15.     <stringbundleset id="stringbundleset">
  16.         <stringbundle id="firefound-bundle" src="chrome://firefound/locale/strings.properties" />
  17.     </stringbundleset>
  18.     <vbox>
  19.         <deck id="loading">
  20.             <label value="&settings.loading;" class="throbber" />
  21.             <label value="&settings.saving;" class="throbber" />
  22.             <label value="&settings.downloading;" class="throbber" />
  23.         </deck>
  24.         <vbox id="controls" style="visibility: hidden;">
  25.             <groupbox orient="horizontal" align="center">
  26.                 <label control="email">&settings.emailAddress;</label>
  27.                 <textbox id="email" flex="1" />
  28.             </groupbox>
  29.             <groupbox>
  30.                 <label control="miles">&settings.sendEmail.1;</label>
  31.                 <hbox align="center">
  32.                     <textbox id="miles" size="2" />
  33.                     <label control="miles">&settings.sendEmail.2;</label>
  34.                 </hbox>
  35.             </groupbox>
  36.             <groupbox>
  37.                 <label>&settings.dataProtection.header;</label>
  38.                 <hbox>
  39.                     <vbox>
  40.                         <checkbox id="edp_history" label="&settings.dataProtection.history;" />
  41.                         <checkbox id="edp_downloads" label="&settings.dataProtection.downloads;" />
  42.                         <checkbox id="edp_formdata" label="&settings.dataProtection.formdata;" />
  43.                         <checkbox id="edp_cache" label="&settings.dataProtection.cache;" />
  44.                         <checkbox id="edp_offlineApps" label="&settings.dataProtection.offlineApps;" />
  45.                     </vbox>
  46.                     <vbox align="top">
  47.                         <checkbox id="edp_passwords" label="&settings.dataProtection.passwords;" />
  48.                         <checkbox id="edp_cookies" label="&settings.dataProtection.cookies;" />
  49.                         <checkbox id="edp_sessions" label="&settings.dataProtection.sessions;" />
  50.                         <checkbox id="edp_siteSettings" label="&settings.dataProtection.siteSettings;" />
  51.                     </vbox>
  52.                 </hbox>
  53.             </groupbox>
  54.             <groupbox>
  55.                 <button oncommand="FIREFOUND.downloadLocations();" label="&settings.data.download;" />
  56.             </groupbox>
  57.         </vbox>
  58.     </vbox>
  59. </dialog>